873b49ade4a741f1243bf01cf4a8e156aaa6b2d0,src/main/java/se/crafted/chrisb/ecoCreature/drops/categories/CustomDropCategory.java,CustomDropCategory,parseConfig,#ConfigurationSection#,81
Before Change
}
if (config.getBoolean("System.Hunting.PVPReward")) {
for (AbstractDropSource dropSource : configureDropSources(DropSourceFactory.createSources(CustomDropType.LEGACY_PVP.toString(), config), config)) {
if (!dropSourceMap.containsKey(CustomDropType.LEGACY_PVP)) {
dropSourceMap.put(CustomDropType.LEGACY_PVP, new ArrayList<AbstractDropSource>());
}
After Change
}
if (config.getBoolean("System.Hunting.PVPReward")) {
for (AbstractDropSource dropSource : DropSourceFactory.createSources(CustomDropType.LEGACY_PVP.toString(), config)) {
if (!dropSourceMap.containsKey(CustomDropType.LEGACY_PVP)) {
dropSourceMap.put(CustomDropType.LEGACY_PVP, new ArrayList<AbstractDropSource>());
}